home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-17 | 1.8 KB | 84 lines | [TEXT/MPS ] |
- {
- File: Finder.p
-
- Copyright: © 1983-1993 by Apple Computer, Inc.
- All rights reserved.
-
- Version: System 7.1 for ETO #11
- Created: Tuesday, March 30, 1993 18:00
-
- }
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
- {$IFC NOT UsingIncludes}
- UNIT Finder;
- INTERFACE
- {$ENDC}
-
- {$IFC UNDEFINED UsingFinder}
- {$SETC UsingFinder := 1}
-
-
- CONST
-
- { make only the following consts avaiable to resource files that include this file }
- kCustomIconResource = -16455; { Custom icon family resource ID }
-
- kContainerFolderAliasType = 'fdrp'; { type for folder aliases }
- kContainerTrashAliasType = 'trsh'; { type for trash folder aliases }
- kContainerHardDiskAliasType = 'hdsk'; { type for hard disk aliases }
- kContainerFloppyAliasType = 'flpy'; { type for floppy aliases }
- kContainerServerAliasType = 'srvr'; { type for server aliases }
- kApplicationAliasType = 'adrp'; { type for application aliases }
- kContainerAliasType = 'drop'; { type for all other containers }
-
- { type for Special folder aliases }
- kSystemFolderAliasType = 'fasy';
- kAppleMenuFolderAliasType = 'faam';
- kStartupFolderAliasType = 'fast';
- kPrintMonitorDocsFolderAliasType = 'fapn';
- kPreferencesFolderAliasType = 'fapf';
- kControlPanelFolderAliasType = 'fact';
- kExtensionFolderAliasType = 'faex';
-
- { type for AppleShare folder aliases }
- kExportedFolderAliasType = 'faet';
- kDropFolderAliasType = 'fadr';
- kSharedFolderAliasType = 'fash';
- kMountedFolderAliasType = 'famn';
-
-
- {Finder Flags}
- kIsOnDesk = $1;
- kColor = $E;
-
- {kColorReserved = $10
- kRequiresSwitchLaunch = $20}
-
- kIsShared = $40;
-
- {kHasNoINITs = $80}
-
- kHasBeenInited = $100;
-
- {kReserved = $200}
-
- kHasCustomIcon = $400;
- kIsStationary = $800;
- kNameLocked = $1000;
- kHasBundle = $2000;
- kIsInvisible = $4000;
- kIsAlias = $8000;
-
-
-
- {$ENDC} { UsingFinder }
-
- {$IFC NOT UsingIncludes}
- END.
- {$ENDC}
-
-